clear laravel.log

150

clear laravel.log -

//routes/console.php

Artisan::command('logs:clear', function() {

    exec('rm ' . storage_path('logs/*.log'));

    $this->comment('Logs have been cleared!');

})->describe('Clear log files');


//php artisan logs:clear

How To Clear Laravel.Log In Laravel? -

echo "" > storage/logs/laravel.log

Comments

Submit
0 Comments